home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / MacApp / MacApp CD Release / MacApp 2.0.1 (Many Libraries) / Libraries / PrivateInterfaces / UMenuSetup.p < prev    next >
Encoding:
Text File  |  1990-10-25  |  968 b   |  41 lines  |  [TEXT/MPS ]

  1. {[a-,body+,h-,o=100,r+,rec+,t=4,u+,#+,j=20/57/1$,n+]}
  2. { UMenuSetup.p }
  3. { Copyright © 1984-1990  Apple Computer, Inc.  All rights reserved. }
  4.  
  5. {$IFC UNDEFINED UsingIncludes}
  6. {$SETC UsingIncludes := FALSE}
  7. {$ENDC}
  8.  
  9. UNIT UMenuSetup;
  10.  
  11.     INTERFACE
  12.  
  13.         USES
  14. {$SETC __UMenuSetup__ := TRUE}
  15.             { • MacApp }
  16.             {$U $$Shell(MAPInterfaces)UMacAppUtilities} UMacAppUtilities,
  17.             {$U $$Shell(MAPInterfaces)UFailure} UFailure,
  18.             {$U $$Shell(MAPInterfaces)UMemory} UMemory,
  19.  
  20.             { • Required for this unit's interface }
  21.             Menus,
  22.  
  23.             { • Implementation use }
  24.             {$U $$Shell(MAPInterfaces)ULoMem} ULoMem,
  25.             {$U $$Shell(MAPInterfaces)UDebug} UDebug,
  26.             ToolUtils, Resources, Packages;
  27.  
  28. {$SETC __UMenuSetup__ := FALSE}
  29.             { • Include the public interface }
  30.             {$SETC _UMenuSetupIncludes := UsingIncludes}
  31.             {$SETC UsingIncludes := TRUE}
  32.             {$I+}
  33.             {$I $$Shell(MAPInterfaces)UMenuSetup.p}
  34.             {$SETC UsingIncludes := _UMenuSetupIncludes}
  35.  
  36.     IMPLEMENTATION
  37.  
  38.         {$I UMenuSetup.inc1.p}
  39.  
  40. END.
  41.